var reflect.lookupCache
13 uses
reflect (current package)
type.go#L1558: var lookupCache sync.Map // map[cacheKey]*rtype
type.go#L1591: if ch, ok := lookupCache.Load(ckey); ok {
type.go#L1624: ti, _ := lookupCache.LoadOrStore(ckey, toRType(tt))
type.go#L1639: ti, _ := lookupCache.LoadOrStore(ckey, toRType(&ch.Type))
type.go#L1659: if mt, ok := lookupCache.Load(ckey); ok {
type.go#L1668: ti, _ := lookupCache.LoadOrStore(ckey, toRType(tt))
type.go#L1712: ti, _ := lookupCache.LoadOrStore(ckey, toRType(&mt.Type))
type.go#L2077: if slice, ok := lookupCache.Load(ckey); ok {
type.go#L2086: ti, _ := lookupCache.LoadOrStore(ckey, toRType(tt))
type.go#L2101: ti, _ := lookupCache.LoadOrStore(ckey, toRType(&slice.Type))
type.go#L2633: if array, ok := lookupCache.Load(ckey); ok {
type.go#L2642: ti, _ := lookupCache.LoadOrStore(ckey, toRType(tt))
type.go#L2755: ti, _ := lookupCache.LoadOrStore(ckey, toRType(&array.Type))
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |